home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Internet Strate…Tools for the Enterprise / Microsoft Internet Strategy & Tools for the Enterprise.iso / content / devel.tls / icp / httpexpl.exe / HTTPCNST.BAS < prev    next >
BASIC Source File  |  1996-03-05  |  863b  |  25 lines

  1. Attribute VB_Name = "tmpConstants"
  2. Option Explicit
  3.  
  4. ' Treeview text constants...
  5. Public Const HTTPROOT = "World Wide Web"
  6.  
  7. ' Toolbar button constants
  8. Public Const btnGLOBESEARCH = 2
  9.  
  10. ' Toolbar icon constants
  11. Public Const icoGLOBESEARCH = 1
  12.  
  13. ' Treeview icon constants
  14. Public Const icoWORLDWIDEWEB = 1
  15. Public Const icoWEBDOC = 2
  16. Public Const icoWEBPAGE = 3
  17. Public Const icoWEBPAGESC = 4
  18.  
  19. ' API Contsants...
  20. Public Const SW_SHOWDEFAULT = 10
  21.  
  22. ' API Declarations...
  23. Public Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
  24. Public Declare Function GetTempPath Lib "kernel32" Alias "GetTempPathA" (ByVal nBufferLength As Long, ByVal lpBuffer As String) As Long
  25.